renv makes your R project:
- isolated
- portable
- reproducible
26/09/2020
renv installs packages from a variety of sources
renv::init() to initialize tracking
renv::snapshot() saves the state of the project library to a lockfile
renv::restore() whenever you would like to revert the changes you have made
plan <- drake_plan( # all the functions you want to call ) vis_drake_graph()
make(plan) vis_drake_graph()